summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/java/org/yuzu/yuzu_emu/features/input/model/InputType.kt
blob: f725231cb83fccf0ba2a7af3b68864c98254ce46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-FileCopyrightText: 2024 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later

package org.yuzu.yuzu_emu.features.input.model

// Must match the corresponding enum in input_common/main.h
enum class InputType(val int: Int) {
    None(0),
    Button(1),
    Stick(2),
    Motion(3),
    Touch(4)
}